home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kit PC World De Ampliacion De Windows 95
/
Kit PC World de ampliacion de Windows 95.iso
/
internet
/
sweeper
/
samples
/
olecon~1
/
controls
/
button
/
button~2.h
< prev
next >
Wrap
Text File
|
1995-11-25
|
1KB
|
50 lines
//=--------------------------------------------------------------------------=
// ButtonPPG.H
//=--------------------------------------------------------------------------=
// Copyright 1995 Microsoft Corporation. All Rights Reserved.
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//=--------------------------------------------------------------------------=
//
// class declaration for Button's property pages.
//
#ifndef _BUTTONPROPPAGE_H_
// kinda need these
//
#include "PropPage.H"
#include "Resource.H"
#include "Guids.H"
class CButtonGeneralPage : public CPropertyPage {
public:
static IUnknown *Create(IUnknown *pUnkOuter);
// constructor and destructor
//
CButtonGeneralPage(IUnknown *pUnkOuter);
virtual ~CButtonGeneralPage();
private:
virtual BOOL DialogProc(HWND, UINT, WPARAM, LPARAM);
};
DEFINE_PROPERTYPAGEOBJECT(ButtonGeneral,
&CLSID_ButtonGeneralPage,
"Button General Propery Page",
CButtonGeneralPage::Create,
IDD_PROPPAGE_BUTTONGENERAL,
IDS_BUTTON_GENERALPAGETITLE,
IDS_BUTTON_GENERALDOCSTRING,
"vb.hlp",
0);
#define _BUTTONPROPPAGE_H_
#endif // _BUTTONPROPPAGE_H_